home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / bagle_remover.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  64 lines

  1. # (C) Tenable Network Security
  2. #
  3. # Credit:
  4. # From: Joe Stewart <jstewart@lurhq.com>
  5. # To: TH-Research
  6. # Subject: [TH-research] Bagle remote uninstall
  7. # Date: Tue, 20 Jan 2004 17:19:41 -0500
  8. #
  9.  
  10. if(description)
  11. {
  12.  script_id(12027);
  13.  
  14.  script_version("$Revision: 1.9 $");
  15.  
  16.  name["english"] = "Bagle remover";
  17.  
  18.  script_name(english:name["english"]);
  19.  
  20.  desc["english"] = "
  21. The remote host had the bagle virus installed. Nessus probably 
  22. removed it by connecting to port 6777 of this host and use the 
  23. built-in removal command of this virus to clean up the remote host,
  24. however you should make sure that :
  25. - The virus was indeed properly removed
  26. - The remote computer has not be altered in any other way.
  27.  
  28. Solution: Re-install this system from scratch if the virus backdoor has been
  29. used by an intruder
  30. Risk factor : High";
  31.  
  32.  
  33.  script_description(english:desc["english"]);
  34.  
  35.  summary["english"] = "Removes bagle if it is installed";
  36.  
  37.  script_summary(english:summary["english"]);
  38.  
  39.  script_category(ACT_DESTRUCTIVE_ATTACK);
  40.  
  41.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  42.  family["english"] = "Windows";
  43.  script_family(english:family["english"]);
  44.  
  45.  script_require_ports(6777);
  46.  exit(0);
  47. }
  48.  
  49. if ( ! get_port_state(6777) ) 
  50.     exit(0);
  51.  
  52.  
  53. soc = open_sock_tcp(6777);
  54. if ( soc )
  55. {
  56.  send(socket:soc, data:raw_string(0x43, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04) + "12" + raw_string(0));
  57.  r = recv(socket:soc, length:4096);
  58.  display(hexstr(r), "\n");
  59.  if ( hexstr(r) == "01000000791a0000" ) security_hole(6777);
  60.  close(soc);
  61. }
  62.  
  63.